home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / Intuition / Images_Text / smakefile < prev   
Encoding:
Makefile  |  1996-03-20  |  336 b   |  19 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all: compleximage intuitext shadowborder simpleimage
  4.  
  5. compleximage: compleximage.c
  6.     sc link $(CFLAGS) $@
  7.  
  8. intuitext: intuitext.c
  9.     sc link $(CFLAGS) $@
  10.  
  11. shadowborder: shadowborder.c
  12.     sc link $(CFLAGS) $@
  13.  
  14. simpleimage: simpleimage.c
  15.     sc link $(CFLAGS) $@
  16.  
  17. clean:
  18.     -delete \#?.(o|lnk)
  19.